home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 09 - 1993 / 09.07 Jul 93 / Bedrock Example / EdTimeCh.h < prev   
Encoding:
C/C++ Source or Header  |  1993-04-22  |  1.7 KB  |  51 lines  |  [TEXT/MPS ]

  1. #ifndef EDTIMECH_H
  2. #define EDTIMECH_H
  3. //===================================================================================
  4. //
  5. //     File:            EdTimeCh.h
  6. //     Release Version:    $Revision$
  7. //
  8. //     COPYRIGHT 1993 SYMANTEC CORPORATION. ALL RIGHTS RESERVED. UNPUBLISHED RIGHTS
  9. //     RESERVED UNDER THE COPYRIGHT LAWS OF THE UNITED STATES. USE OF COPYRIGHT
  10. //     NOTICE IS PRECAUTIONARY ONLY AND DOES NOT IMPLY PUBLICATION OR DISCLOSURE.
  11. //
  12. //     THIS SOFTWARE CONTAINS PROPRIETARY AND CONFIDENTIAL INFORMATION OF SYMANTEC
  13. //     CORPORATION. USE, DISCLOSURE, OR REPRODUCTION IS PROHIBITED WITHOUT THE PRIOR
  14. //     EXPRESS WRITTEN PERMISSION OF SYMANTEC CORPORATION.
  15. //
  16. //     RESTRICTED RIGHTS LEGEND
  17. //     Use, duplication, or disclosure by the Government is subject to restrictions
  18. //     as set forth in subparagraph (c)(l)(ii) of the Rights in Technical Data and
  19. //     Computer Software clause at DFARS 252.227-7013.
  20. //     Symantec Corporation, 10201 Torre Avenue, Cupertino, CA 95014.
  21. //
  22. //===================================================================================
  23.  
  24. #ifndef EDSTATBR_H
  25. #include "EDStatBr.h"
  26. #endif
  27.  
  28. #ifndef BRCHORE_H
  29. #include <BRChore.h>
  30. #endif
  31.  
  32. //-----------------------------------------------------------------------------------
  33. // class cEdTimerChore
  34. //
  35. // This class displays the current time on the status bar every second.
  36. //-----------------------------------------------------------------------------------
  37.  
  38. class cEdTimerChore : public BR_CTimerChore
  39. {
  40. public:
  41.                         cEdTimerChore(cEdStatusBar *edStatusBar);
  42.     virtual               ~cEdTimerChore();
  43.  
  44.     // Overridden methods
  45.     virtual BR_Boolean    Do();
  46.     
  47.                         BR_SETCLASSNAME(cEdTimerChore);
  48. } ;
  49.  
  50. #endif
  51.